home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000026_fdc@columbia.edu_Tue Apr 29 09:50:38 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  54 lines

  1. Article: 14242 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: ckermit on HPUX11.
  6. Date: 29 Apr 2003 09:50:33 -0400
  7. Organization: Columbia University
  8. Lines: 37
  9. Message-ID: <b8lvv9$nu6$1@watsol.cc.columbia.edu>
  10. References: <c30aaa81.0304180518.3a35503b@posting.google.com> <b83isu$fa4$1@watsol.cc.columbia.edu> <3EA555B8.9090601@nyc.rr.com> <c30aaa81.0304290200.20917245@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1051624234 18737 128.59.39.139 (29 Apr 2003 13:50:34 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 29 Apr 2003 13:50:34 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14242
  16.  
  17. In article <c30aaa81.0304290200.20917245@posting.google.com>,
  18. Eric <ericboniface@chez.com> wrote:
  19. : "Jeffrey Altman [Road Runner NYC]" <jaltman2@nyc.rr.com>
  20. : wrote in message news:<3EA555B8.9090601@nyc.rr.com>...
  21. : > There are two libraries:
  22. : > 
  23. : >    libssl.a
  24. : >    libcrypto.a
  25. : > 
  26. : > It sounds like you are failing to link to the libcrypto.a library.
  27. :
  28. : Strange as I compile the last openssl version without any error and I
  29. : gave kermit make command the right path to the openssl lib.
  30. : By the way I also get back an already compiled openssl library file
  31. : for HPUX, and I still have the same message.
  32. As Jeff said, it's the crypto library -- not openssl -- that is contains
  33. the missing stuff.  The hpux1100o+openssl target was sent in by somebody who
  34. said it worked, but maybe something was lost in transit.  Try this one:
  35.  
  36. hpux1100o+openssl:
  37.     MFLAGS='+ESlit +ESsfc' ; \
  38.     KFLAGS="-DCK_AUTHENTICATION -DCK_SSL -I/opt/zlib/include \
  39.     -DZLIB -DOPENSSL_097 $(SSLINC) $(KFLAGS) -DHPUX1100 -D__HP_CURSES \
  40.     -Aa -D_HPUX_SOURCE -DCK_ANSIC -DUTIMEH +O2 -Wl,-Fw $$MFLAGS" ; \
  41.     LIBS="$(SSLLIB) $(KRB5LIB) -lssl -lcrypto \
  42.     -L/opt/zlib/lib -lz" \
  43.     $(MAKE) "SHELL=/usr/bin/sh" "PATH=/opt/ansic/bin:$$PATH" xermit \
  44.     KTARGET=$${KTARGET:-$(@)} \
  45.     "CFLAGS = -DHPUX10 -DDIRENT -DSTERMIOX -DCK_DSYSINI -DHDBUUCP \
  46.     -DCK_CURSES -DCK_WREFRESH -DTCPSOCKET -DCK_REDIR -DRENAME -DFNFLOAT \
  47.     $$KFLAGS $$OFLAGS $(KFLAGS)" \
  48.     "LNKFLAGS=-s $(LNKFLAGS)" "LIBS = -lm -lcurses $$LIBS $(KLIBS)"
  49.  
  50. and please let us know whether it worked.
  51.  
  52. - Frank
  53.